home *** CD-ROM | disk | FTP | other *** search
/ Gigarom 4 / Mac Giga-ROM 4.0 - 1993.toast / FILES / HYP / J-M / MenuLaunch Stack1.2b.cpt / MenuLaunch Stack1.2b / stack.txt < prev   
Text File  |  1989-02-26  |  4KB  |  135 lines

  1. -- stack: in.2b
  2. -- format: 8 (HyperCard 1)
  3. -- flags: 0x0 (none)
  4. -- protect password hash: 0
  5. -- maximum user level: 5 (scripting)
  6. -- window: Rect(x1=0, y1=0, x2=0, y2=0)
  7. -- screen: Rect(x1=0, y1=0, x2=0, y2=0)
  8. -- card dimensions: w=0 h=0
  9. -- scroll: x=0 y=0
  10. -- background count: 1
  11. -- first background id: 2777
  12. -- card count: 1
  13. -- first card id: 2858
  14. -- list block id: 2490
  15. -- print block id: 2206
  16. -- font table block id: 0
  17. -- style table block id: 0
  18. -- free block count: 0
  19. -- free size: 0 bytes
  20. -- total size: 32544 bytes
  21. -- stack block size: 4608 bytes
  22. -- created by hypercard version: 0x00000000
  23. -- compacted by hypercard version: 0x00000000
  24. -- modified by hypercard version: 0x00000000
  25. -- opened by hypercard version: 0x00000000
  26. -- patterns[0]: 0x0000000000000000
  27. -- patterns[1]: 0x8000000008000000
  28. -- patterns[2]: 0x8800220088002200
  29. -- patterns[3]: 0x8888222288882222
  30. -- patterns[4]: 0x88AA22AA88AA22AA
  31. -- patterns[5]: 0xCCAA33AACCAA33AA
  32. -- patterns[6]: 0xEEAABBAAEEAABBAA
  33. -- patterns[7]: 0xEEBBBBEEEEBBBBEE
  34. -- patterns[8]: 0xFFBBFFEEFFBBFFEE
  35. -- patterns[9]: 0xFFBBFFFFFFBBFFFF
  36. -- patterns[10]: 0x8010022001084004
  37. -- patterns[11]: 0xFFFFFFFFFFFFFFFF
  38. -- patterns[12]: 0x8822882288228822
  39. -- patterns[13]: 0x1122448811224488
  40. -- patterns[14]: 0xC4800C6843023026
  41. -- patterns[15]: 0xB130031BD8C00C8D
  42. -- patterns[16]: 0xAA00AA00AA00AA00
  43. -- patterns[17]: 0x8822552288225522
  44. -- patterns[18]: 0x8855225588552255
  45. -- patterns[19]: 0x77DD77DD77DD77DD
  46. -- patterns[20]: 0x8000000000000000
  47. -- patterns[21]: 0xAA55AA55AA55AA55
  48. -- patterns[22]: 0x038448300C020101
  49. -- patterns[23]: 0x8244394482010101
  50. -- patterns[24]: 0x8814224188412214
  51. -- patterns[25]: 0x8080413E080814E3
  52. -- patterns[26]: 0x22048C7422179810
  53. -- patterns[27]: 0xBE808808EB088880
  54. -- patterns[28]: 0x25C8328964244C92
  55. -- patterns[29]: 0xA29C41BE2AC914EB
  56. -- patterns[30]: 0x40A00000040A0000
  57. -- patterns[31]: 0x8040200002040800
  58. -- patterns[32]: 0xAA00800088008000
  59. -- patterns[33]: 0xFF80808080808080
  60. -- patterns[34]: 0x081C22C180010204
  61. -- patterns[35]: 0xFF808080FF080808
  62. -- patterns[36]: 0xF87422478F172271
  63. -- patterns[37]: 0xBF00BFBFB0B0B0B0
  64. -- patterns[38]: 0xFF7FBE5DA2418000
  65. -- patterns[39]: 0xFAF5FAF5A050A050
  66. -- checksum: 0x0
  67. ----- HyperTalk script -----
  68.  
  69. --
  70. -- OsErr: for displaying Operating system error codes returned by
  71. -- Sublaunch, RenameFile, MoveFile and DeleteFile XFCNs.
  72. -- From Dewi Williams
  73. --
  74. on OsErr err
  75.   -- Translate the most common ones
  76.   if err > 0 then -- XFCN convention
  77.     put "Parameter error with function" into errstr
  78.   else if err is -59 then
  79.     put "Problem during rename" into errstr
  80.   else if err is -54 then
  81.     put "Attempt to open locked file for writing" into errstr
  82.   else if err is -46 then
  83.     put "Volume locked by software" into errstr
  84.   else if err is -45 then
  85.     put "File locked" into errstr
  86.   else if err is -44 then
  87.     put "Volume locked by hardware" into errstr
  88.   else if err is -43 then
  89.     put "File not found" into errstr
  90.   else if err is -37 then
  91.     put "Bad volume or file name" into errstr
  92.   else if err is -36 then
  93.     put "I/O error" into errstr
  94.   else if err is -35 then
  95.     put "No such volume" into errstr
  96.   else if err is -34 then
  97.     put "Disk is full" into errstr
  98.   else if err is -49 then
  99.     put "File already open for writing" into errstr
  100.   else
  101.     put "Failed with error" && err into errstr
  102.   end if
  103.   answer errstr with "OK"
  104. end OsErr
  105.  
  106. --
  107. -- LastPathComponent -- given a file pathname, returns the last
  108. -- component i.e. whatever comes after the last colon, if anything.
  109. -- From Dewi Williams
  110. --
  111. function LastPathComponent name
  112. -- scan backwards for the last colon.
  113. repeat with i = the length of name down to 1
  114.   if character i of name is ":" then exit repeat
  115. end repeat
  116.  
  117. if i is 1 then
  118.   -- Name was of the form ":thing" or "thing". Check for leading
  119.   -- colon, and adjust if necessary. Done for generality.
  120.   if first character of name is ":" then
  121.     put 2 into i
  122.   end if
  123. else
  124.   add 1 to i -- skip the colon
  125. end if
  126.  
  127. -- Name was of the form "Thing:otherthing". Return "otherThing".
  128. put empty into lastpath
  129. repeat with j = i to the length of name
  130.   put character j of name after lastpath
  131. end repeat
  132. return lastpath
  133. end LastPathComponent
  134.  
  135.